home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / basic / ace24dist.lha / ace24.lha / include / funcs / wb_funcs.h < prev   
C/C++ Source or Header  |  1996-09-10  |  1KB  |  44 lines

  1. #ifndef  FUNCS_WB_FUNCS_H
  2. #define  FUNCS_WB_FUNCS_H
  3.  
  4. /*
  5. **
  6. ** Function declarations for ACE Basic
  7. **
  8. ** Note: Translated to ACE by Nils Sjoholm
  9. **
  10. ** Date: 11-Oct-95 TO 14-Oct-95
  11. **
  12. */              
  13.  
  14. /*--- functions in V36 OR higher (Release 2.0) ---*/
  15. #ifndef  EXEC_TYPES_H
  16. #include <exec/types.h>
  17. #endif
  18.  
  19. DECLARE FUNCTION STRUCTPTR AddAppWindowA( LONGINT id, LONGINT userdata, \
  20.                                           STRUCTPTR _window, STRUCTPTR msgport, \
  21.                                           STRUCTPTR taglist ) LIBRARY wb
  22.  
  23. DECLARE FUNCTION BOOL RemoveAppWindow( STRUCTPTR appWindow ) LIBRARY wb
  24.  
  25. DECLARE FUNCTION STRUCTPTR AddAppIconA( LONGINT id, LONGINT userdata, \
  26.                                         ADDRESS text, STRUCTPTR msgport, \
  27.                                         STRUCTPTR lock, STRUCTPTR diskobj, \
  28.                                         STRUCTPTR taglist ) LIBRARY wb
  29.  
  30. DECLARE FUNCTION BOOL RemoveAppIcon( STRUCTPTR appIcon ) LIBRARY wb
  31.  
  32. DECLARE FUNCTION STRUCTPTR AddAppMenuItemA( LONGINT id, LONGINT userdata, \
  33.                                            ADDRESS text, STRUCTPTR msgport, STRUCTPTR taglist ) LIBRARY wb
  34.  
  35. DECLARE FUNCTION BOOL RemoveAppMenuItem( STRUCTPTR appMenuItem ) LIBRARY wb
  36.  
  37. /*--- functions in V39 OR higher (Release 3) ---*/
  38.  
  39.  
  40. DECLARE FUNCTION WBInfo( BPTR lock, STRPTR _NAME, STRUCTPTR _SCREEN ) LIBRARY wb
  41.  
  42.  
  43. #endif   /* FUNCS_WB_FUNCS_H */
  44.